home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
273_01
/
locate.cc
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1987-09-26
|
231 b
|
10 lines
#include <dos.h>
locate(int row, int col)
/* Position the cursor at row,col */
{
union REGS inregs;
inregs.h.ah=2; inregs.h.dh=row; inregs.h.dl=col;
inregs.h.bh=0;
int86(0x10,&inregs,&inregs);
}